home *** CD-ROM | disk | FTP | other *** search
- #ifndef _DBLIST_H_
- #define _DBLIST_H_
-
- #ifndef _SIMPLE_LIST_H
- #include <util/SimpleList.h>
- #endif
-
- #ifndef _DBFILE_H_
- #include "DBFile.h"
- #endif
-
- #ifndef _DBRECORD_H_
- #include "DBRecord.h"
- #endif
-
- @interface DBList : SimpleList
- {
- DBFile *entity;
- }
-
- - init;
- - initForEntity: (DBFile *) anEntity;
-
- - fetchAllRecords: sender;
- - fetchUsingQualifier: aQualifier;
- - saveChanges: sender;
-
- - setEntity: (DBFile *) anEntity;
- - (DBFile *) entity;
-
- @end
-
- #endif
-